home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / pnm2ppa.config < prev    next >
Text File  |  2009-06-29  |  536b  |  29 lines

  1. #!/bin/sh
  2. #
  3. # Config script for pnm2ppa
  4. #
  5. # Only ask the questions here.  Make the changes to the filesystem in the
  6. # postinst script.
  7. #
  8. set -e
  9.  
  10. # Source debconf library.
  11. . /usr/share/debconf/confmodule
  12.  
  13. # Let debconf manage the file?
  14. db_input medium pnm2ppa/use_debconf || true
  15. db_go
  16.  
  17. # Get the value
  18. db_get pnm2ppa/use_debconf
  19. if [ "$RET" = "true" ] ; then
  20.     # Ask which printer
  21.     db_input medium pnm2ppa/printer_model || true
  22.     db_go
  23.  
  24.     # Create magicfilter for printer model?
  25.     db_input low pnm2ppa/create_magicfilter || true
  26.     db_go
  27. fi
  28.  
  29.